function twofire()
for i = 1,10 do
if BulletInfo2[i].firing == true then
if Player.x > Enemytwo.x then 
BulletInfo2[i].x = BulletInfo2[i].x + 10 
BulletInfo2[i].y = BulletInfo2[i].y + 5 
end
if Player.x < Enemytwo.x then 
BulletInfo2[i].x = BulletInfo2[i].x - 10 
BulletInfo2[i].y = BulletInfo2[i].y + 5 
end
if BulletInfo2[i].direction == "up"  then 
BulletInfo2[i].y = BulletInfo2[i].y - 5 
BulletInfo2[i].x = BulletInfo2[i].x + 10
end
if Player.x == Enemytwo.x then 
BulletInfo2[i].y = BulletInfo2[i].y + 10 
end

screen:blit(BulletInfo2[i].x,BulletInfo2[i].y,BulletInfo2[i].pic)
end
end
end